

h1{
    font-size: 4rem;
    padding-top: 5rem;
}
h2{
    font-size: 3rem;
}
h3{
    font-size: 2rem;
}
.section{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: 5rem;
}
.first_section{
    margin-top: 5rem;
}
.section_layout{
    width: 60%;
}
img{
    width: 90%;
}
.first_part_layout{
    display: flex;
    justify-content: space-between;
    margin-top: 10rem;
    align-items: flex-start;
}
.first_text_part{
    width: 50%;
}
.image_border{
    width: 40%;
    border: 1px black solid;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}
.paragraph{
    padding-bottom: 1rem;
}
.last_part_layout{
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    align-items: flex-start;
}
.last_section{
    margin-top: 10rem;
}
.special_thanks{
    padding: 2rem 0 1rem 0;
}

.movie_section_play_button{
    padding: 2rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid black;
    font-size: 1.8rem;
    color: black;
    text-decoration: none;
    cursor: pointer;
    margin-top: 2rem;
}
.play_icon{
    margin-right: 2rem;
}


@media screen and (max-width: 1440px){
    .section_layout {
        width: 65%;
    }
}



@media screen and (max-width: 1024px){
    h1 {
        font-size: 3rem;
        padding-top: 0rem;
    }
    .section {
        margin-left: 8rem;
    }
    .movie_section_play_button {
        padding: 1rem;
    }
}

@media screen and (max-width: 768px){
    .section {
        margin-left: 0rem;
    }
    .section_layout {
        width: 80%;
    }
}

@media screen and (max-width: 570px){
    .first_part_layout {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 5rem;
        align-items: center;
    }
    .first_text_part {
        width: 100%;
        margin-top: 2rem;
    }
    .image_border {
        width: 70%;
        padding: 2rem 0;
    }
    .second_part_layout{
        flex-direction: column-reverse;
        margin-top: 2rem;
    }
    .last_section {
        margin-top: 5rem;
    }
    .last_part_layout {
        display: flex;
        flex-direction: column;
        margin-top: 2rem;
        align-items: center;
    }
}